home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day08 / stmain.h < prev   
Encoding:
C/C++ Source or Header  |  1998-02-08  |  1.2 KB  |  36 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef STMainH
  3. #define STMainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-managed Components 
  14.     TScrollBar *RedScroller;
  15.     TPanel *ColoredPanel;
  16.     TLabel *Label1;
  17.     TLabel *Label2;
  18.     TScrollBar *GreenScroller;
  19.     TLabel *Label3;
  20.     TScrollBar *BlueScroller;
  21.     TPanel *RedPanel;
  22.     TPanel *BluePanel;
  23.     TPanel *GreenPanel;
  24.     void __fastcall RedScrollerScroll(TObject *Sender,
  25.       TScrollCode ScrollCode, Integer &ScrollPos);
  26.     
  27.     
  28. private:        // User declarations
  29. public:         // User declarations
  30.     virtual __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.